hyprconf2lua 1.3.1__tar.gz → 1.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. {hyprconf2lua-1.3.1/src/hyprconf2lua.egg-info → hyprconf2lua-1.3.2}/PKG-INFO +1 -1
  2. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/pyproject.toml +1 -1
  3. hyprconf2lua-1.3.2/src/hyprconf2lua/__init__.py +1 -0
  4. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/codegen.py +2 -2
  5. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2/src/hyprconf2lua.egg-info}/PKG-INFO +1 -1
  6. hyprconf2lua-1.3.1/src/hyprconf2lua/__init__.py +0 -1
  7. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/LICENSE +0 -0
  8. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/README.md +0 -0
  9. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/setup.cfg +0 -0
  10. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/__main__.py +0 -0
  11. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/ast.py +0 -0
  12. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/cli.py +0 -0
  13. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/converter.py +0 -0
  14. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/lexer.py +0 -0
  15. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/mappings.py +0 -0
  16. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua/parser.py +0 -0
  17. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua.egg-info/SOURCES.txt +0 -0
  18. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua.egg-info/dependency_links.txt +0 -0
  19. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua.egg-info/entry_points.txt +0 -0
  20. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/src/hyprconf2lua.egg-info/top_level.txt +0 -0
  21. {hyprconf2lua-1.3.1 → hyprconf2lua-1.3.2}/tests/test_converter.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyprconf2lua
3
- Version: 1.3.1
3
+ Version: 1.3.2
4
4
  Summary: Convert Hyprland hyprlang .conf files to Lua .lua config format (v0.55+)
5
5
  Author: hyprconf2lua contributors
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hyprconf2lua"
7
- version = "1.3.1"
7
+ version = "1.3.2"
8
8
  description = "Convert Hyprland hyprlang .conf files to Lua .lua config format (v0.55+)"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -0,0 +1 @@
1
+ __version__ = "1.3.2"
@@ -51,8 +51,8 @@ class Codegen:
51
51
 
52
52
  def generate(self, config: ConfigFile) -> str:
53
53
  self.lines = []
54
- self.emit("-- Generated by hyprconf2lua v1.3.1")
55
- self.emit("-- https://github.com/yourusername/hyprconf2lua")
54
+ self.emit("-- Generated by hyprconf2lua v1.3.2")
55
+ self.emit("-- https://github.com/Prateek-squadron/hyprconf2lua")
56
56
  self.emit("-- Manual review may be needed for complex directives")
57
57
  self.emit("")
58
58
  self.emit('---@module \'hl\'')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyprconf2lua
3
- Version: 1.3.1
3
+ Version: 1.3.2
4
4
  Summary: Convert Hyprland hyprlang .conf files to Lua .lua config format (v0.55+)
5
5
  Author: hyprconf2lua contributors
6
6
  License: MIT
@@ -1 +0,0 @@
1
- __version__ = "1.3.1"
File without changes
File without changes
File without changes