Search Results visual studio code

pposiew/treesheets

TreeSheets Open Source Free Form Data Organizer A "hierarchical spreadsheet" that is a great replacement for spreadsheets, mind mappers, outliners, PIMs, text editors and small databases. Suitable for any kind of data organization, such as todo lists, calendars, project management, brainstorming, organizing ideas, planning, requirements gathering, presentation of information, etc. For more information, visit TreeSheets homepage and source code repository. TreeSheets is released under the zlib license. Reporting issues For issues with the package, report here, or comment via Fedora Discussion. For issues with the program, report upstream.
  • Fedora 44 : x86_64

vertigo-red/telegram-desktop

New era of messaging Pure instant messaging — simple, fast, secure, and synced across all your devices. One of the world's top 10 most downloaded apps with over 500 million active users. FAST: Telegram is the fastest messaging app on the market, connecting people via a unique, distributed network of data centers around the globe. SYNCED: You can access your messages from all your phones, tablets and computers at once. Telegram apps are standalone, so you don’t need to keep your phone connected. Start typing on one device and finish the message from another. Never lose your data again. UNLIMITED: You can send media and files, without any limits on their type and size. Your entire chat history will require no disk space on your device, and will be securely stored in the Telegram cloud for as long as you need it. SECURE: We made it our mission to provide the best security combined with ease of use. Everything on Telegram, including chats, groups, media, etc. is encrypted using a combination of 256-bit symmetric AES encryption, 2048-bit RSA encryption, and Diffie–Hellman secure key exchange. 100% FREE & OPEN: Telegram has a fully documented and free API for developers, open source apps and verifiable builds to prove the app you download is built from the exact same source code that is published. POWERFUL: You can create group chats with up to 200,000 members, share large videos, documents of any type (.DOCX, .MP3, .ZIP, etc.) up to 2 GB each, and even set up bots for specific tasks. Telegram is the perfect tool for hosting online communities and coordinating teamwork. RELIABLE: Built to deliver your messages using as little data as possible, Telegram is the most reliable messaging system ever made. It works even on the weakest mobile connections. FUN: Telegram has powerful photo and video editing tools, animated stickers and emoji, fully customizable themes to change the appearance of your app, and an open sticker/GIF platform to cater to all your expressive needs. SIMPLE: While providing an unprecedented array of features, we take great care to keep the interface clean. Telegram is so simple you already know how to use it. PRIVATE: We take your privacy seriously and will never give any third parties access to your data. You can delete any message you ever sent or received for both sides, at any time and without a trace. Telegram will never use your data to show you ads. We keep expanding the boundaries of what you can do with a messaging app. Don’t wait years for older messengers to catch up with Telegram — join the revolution today.
  • Fedora 44 : x86_64

@eventb-rossi/eventb-copr

RPM packaging for the Event-B / B-method ecosystem — the Rodin Platform IDE, Atelier B, and command-line tools for code generation, model checking and validation.
  • Fedora 43 : x86_64
  • Fedora 44 : x86_64

tle/PrismLauncher

If you are addicted to Minecraft, this is one of the best launcher out there!
  • Fedora 43 : aarch64, ppc64le, riscv64, x86_64
  • Fedora 44 : aarch64, ppc64le, riscv64, s390x, x86_64
  • Rhel 10 : aarch64, ppc64le, x86_64
  • Rhel 9 : aarch64, ppc64le, x86_64

owensz/rust-dmidecode

Description not filled in by author. Very likely personal repository for testing purpose, which you should not use.
  • Fedora rawhide : x86_64

phrodo-00/wine-tkg

This repo contains a set of rpms for Fedora 43 consisting of: wine + wine-staging version 9.21 plus the ntsync and hotfix patches from wine-tkg yabridge version git rev 0f3e762 (so newer than release 5.1.1) wine-mono version 9.3.0 (required by wine-9.21) wine-dxvk version 2.7 and 2.7.1 (or later) libcurl-gnutls version 8.15.0 (or later), gnutls patch courtesy of debian winetricks version 20251030 (or later) Optionally: pipewire-wineasio version 1.3.0. Please note that this wine-tkg copr is intended for music production with DAWs like Ardour , Bitwig and PreSonus Studio One and has zero game-related patches from wine-tkg.
  • Fedora 44 : i386, x86_64

mcdostone/rust-nom-kconfig

A Kconfig parsing library written in Rust. Kconfig is a language that describes configuration options for the Linux Kernel. The syntax looks like this: # https://github.com/torvalds/linux/blob/master/arch/riscv/Kconfig#L771 config EFI bool "UEFI runtime support" depends on MMU default y select EFI_STUB help This option provides support for runtime services provided by UEFI firmware. The file starts with a config entry: We define a config named EFI. The next lines are the attributes of this entry. EFI is a boolean config. EFI depends on the config MMU. Its default value is y. If EFI is equals to true then it enables EFI_STUB. The help attribute defines a help text for the end user. There are plenty of other keywords in the Kconfig language, check out the official documentation for more details. Features This is a parser, there is no semantic analysis in this library. This library only supports UTF-8 encoded files. List of supported entries can be found here. List of supported attributes can be found here. When source is met, it reads and parses the specified configuration file. This library uses clone() a lot. Do not expect amazing performances. This parser has been tested on the Linux kernel repository from 2.6.11 to 6.4.9 (3733 versions). There are cargo features for glob-wildcard (used by coreboot, for example) and kconfiglib compatibility. Enabling them adds support for some non-standard entries and attributes used by these projects. Getting started cargo add nom-kconfig use nom_kconfig::{parse_kconfig, KconfigInput}; use std::path::PathBuf; use nom_kconfig::{KconfigFile}; use std::collections::HashMap; // curl https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.4.9.tar.xz | tar -xJ -C /tmp/ fn main() -> Result<(), Box<dyn std::error::Error>> { let mut variables = HashMap::new(); variables.insert("SRCARCH", "x86"); let linux_dir = PathBuf::from("/tmp/linux-6.4.9"); let kconfig_file = KconfigFile::new_with_vars( linux_dir.clone(), linux_dir.join("Kconfig"), &variables, &Default::default(), ); let input = kconfig_file.read_to_string()?; let kconfig = parse_kconfig(KconfigInput::new_extra(&input, kconfig_file)); println!("{:?}", kconfig); Ok(()) } Resources https://www.kernel.org/doc/html/next/kbuild/kconfig-language.html https://doc.coreboot.org/getting_started/kconfig.html https://build2.org/libbuild2-kconfig/doc/build2-kconfig-manual.xhtml#lang
  • Fedora 43 : aarch64, x86_64
  • Fedora 44 : aarch64, x86_64
  • Fedora rawhide : aarch64, x86_64

tagoh/fontconfig218

Testing repo for fontconfig 2.18
  • Fedora rawhide : x86_64

benlue/bambu-studio

BambuStudio slicer for Bambu Lab 3D printers — Linux-first fork with native packaging.
  • Fedora 43 : x86_64
  • Fedora 44 : x86_64

rathann/flare

Packaging of Flare (Signal-compatible client), work in progress
  • Fedora 44 : x86_64
  • Fedora rawhide : x86_64